home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / usr / lib / ubiquity / console-setup / locale < prev   
Text File  |  2008-02-23  |  546b  |  21 lines

  1. #! /bin/sh -e
  2. # If possible, report the intended installation locale rather than the
  3. # current locale. Used by console-setup.
  4. # This must not be installed in /usr/lib/ubiquity/compat; debconf calls
  5. # locale itself, so a locale wrapper cannot source the debconf confmodule.
  6.  
  7. . /usr/share/debconf/confmodule
  8.  
  9. if db_get debian-installer/locale && [ "$RET" ]; then
  10.     LOCALE="$RET"
  11. fi
  12.  
  13. TEXT="$(PATH=/usr/sbin:/usr/bin:/sbin:/bin locale "$@")"
  14. if [ "$LOCALE" ]; then
  15.     printf '%s\n' "$TEXT" | sed "s/=.*/=$LOCALE/"
  16. else
  17.     printf '%s\n' "$TEXT"
  18. fi
  19.  
  20. exit 0
  21.